跳到主要内容

CommentData

The comment data.

Properties

NameTypeDescription
UserNamestringThe comment author.
TextstringThe comment text.
TimestringThe time when the comment was posted (in milliseconds).
SolvedbooleanSpecifies if the comment is resolved (true) or not (false).
RepliesCommentData[]An array containing the comment replies represented as the CommentData object.

Type

Object

Example

let commentData = {
"UserName": "John Smith",
"Text": "comment",
"Time": "1662737941471",
"Solved": true,
"Replies": [
{
"UserName": "Mark Potato",
"Text": "reply 1",
"Time": "1662740895892",
"Solved": false
}
]
};
window.Asc.plugin.executeMethod ("AddComment", [commentData]);